home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / demos / r-z / stormc-demo / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  391b  |  27 lines

  1. #ifndef _INCLUDE_SETJMP_H
  2. #define _INCLUDE_SETJMP_H
  3.  
  4. /*
  5. **  $VER: setjmp.h 10.1 (19.7.95)
  6. **  Includes Release 40.15
  7. **
  8. **  '(C) Copyright 1995 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. #define _JMP_BUF_SIZE 16
  17. typedef int jmp_buf[_JMP_BUF_SIZE];
  18.  
  19. int setjmp(jmp_buf);
  20. void longjmp(jmp_buf, int);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif
  27.